Skip to content

[kotlin-spring] Implement skipDefaultValues in mustache templates#23077

Open
mikhailsnnt wants to merge 3 commits intoOpenAPITools:masterfrom
mikhailsnnt:kotlin-default-values-switch
Open

[kotlin-spring] Implement skipDefaultValues in mustache templates#23077
mikhailsnnt wants to merge 3 commits intoOpenAPITools:masterfrom
mikhailsnnt:kotlin-default-values-switch

Conversation

@mikhailsnnt
Copy link

@mikhailsnnt mikhailsnnt commented Mar 1, 2026

Summary

  • Add skipDefaultValues option to KotlinSpringServerCodegen and wire it into mustache templates
  • Wrap default value assignments in dataClassOptVar.mustache and dataClassReqVar.mustache with {{^skipDefaultValues}}...{{/skipDefaultValues}} guards
  • When skipDefaultValues=true, generated Kotlin data class properties no longer include = null or other default value assignments

Test plan

  • Added testSkipDefaultValues test in KotlinSpringServerCodegenTest that generates petstore models with the flag enabled and asserts = null is absent
  • Test passes: mvn test -pl modules/openapi-generator -Dtest=KotlinSpringServerCodegenTest#testSkipDefaultValues

Summary by cubic

Adds OMIT_DEFAULT_NULL_VALUES to KotlinSpringServerCodegen to skip default null assignments in generated Kotlin data classes. When enabled, optional properties no longer include "= null".

  • New Features

    • Added OMIT_DEFAULT_NULL_VALUES switch and property to omit default nulls.
    • Updated kotlin-spring/dataClassOptVar.mustache to guard defaults with omitDefaultNullValues.
  • Migration

    • Enable with OMIT_DEFAULT_NULL_VALUES=true via additionalProperties or the generator switch.
    • Replaces the earlier skipDefaultValues; default behavior is unchanged when not set.

Written for commit 24a7a73. Summary will update on new commits.

Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 4 files

@wing328
Copy link
Member

wing328 commented Mar 4, 2026

thanks for the PR.

what about doing it in the openapi normalizer instead by adding a rule to remove the default value from the schema so that all generators can support this enhancement as well?

@wing328
Copy link
Member

wing328 commented Mar 4, 2026

Thanks for the PR but your commit (as shown in the Commits tab) is not linked to your Github account, which means this PR won't count as your contribution in https://github.com/OpenAPITools/openapi-generator/graphs/contributors.

Let me know if you need help fixing it.

Ref: https://github.com/OpenAPITools/openapi-generator/wiki/FAQ#how-can-i-update-commits-that-are-not-linked-to-my-github-account

Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

2 issues found across 4 files (changes from recent commits).

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/KotlinSpringServerCodegen.java">

<violation number="1" location="modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/KotlinSpringServerCodegen.java:80">
P2: Public generator option key was changed from `skipDefaultValues` to misspelled `ommitDefaultNullValues`, breaking backward compatibility and silently ignoring existing caller configs.</violation>
</file>

<file name="modules/openapi-generator/src/main/resources/kotlin-spring/dataClassReqVar.mustache">

<violation number="1">
P1: dataClassReqVar.mustache removed the skipDefaultValues guard instead of replacing it with ommitDefaultNullValues, causing unconditional default rendering for required vars.</violation>
</file>

Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.

@Deprecated(message = ""){{/deprecated}}{{#vendorExtensions.x-field-extra-annotation}}
{{{.}}}{{/vendorExtensions.x-field-extra-annotation}}
@get:JsonProperty("{{{baseName}}}"){{#isInherited}} override{{/isInherited}} {{>modelMutable}} {{{name}}}: {{#isEnum}}{{#isArray}}{{baseType}}<{{/isArray}}{{classname}}.{{{nameInPascalCase}}}{{#isArray}}>{{/isArray}}{{/isEnum}}{{^isEnum}}{{{dataType}}}{{/isEnum}}? = {{^defaultValue}}null{{/defaultValue}}{{#defaultValue}}{{^isNumber}}{{{defaultValue}}}{{/isNumber}}{{#isNumber}}{{{dataType}}}("{{{defaultValue}}}"){{/isNumber}}{{/defaultValue}} No newline at end of file
@get:JsonProperty("{{{baseName}}}"){{#isInherited}} override{{/isInherited}} {{>modelMutable}} {{{name}}}: {{#isEnum}}{{#isArray}}{{baseType}}<{{/isArray}}{{classname}}.{{{nameInPascalCase}}}{{#isArray}}>{{/isArray}}{{/isEnum}}{{^isEnum}}{{{dataType}}}{{/isEnum}}?{{^defaultValue}}{{^ommitDefaultNullValues}} = null{{/ommitDefaultNullValues}}{{/defaultValue}}{{#defaultValue}} = {{^isNumber}}{{{defaultValue}}}{{/isNumber}}{{#isNumber}}{{{dataType}}}("{{{defaultValue}}}"){{/isNumber}}{{/defaultValue}} No newline at end of file
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why not simply remove = null part without an option?

cc @karismann (2019/03) @Zomzog (2019/04) @andrewemery (2019/10) @4brunu (2019/11) @yutaka0m (2020/03) @stefankoppier (2022/06) @e5l (2024/10) @dennisameling (2026/02)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@wing328
Likely in many use cases = null part is fine.

And also this change would be not backwards compatible

Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1 issue found across 3 files (changes from recent commits).

Prompt for AI agents (unresolved issues)

Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.


<file name="modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/KotlinSpringServerCodegen.java">

<violation number="1" location="modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/KotlinSpringServerCodegen.java:592">
P2: Public option key rename removed backward compatibility: legacy `ommitDefaultNullValues` is no longer accepted, breaking existing generator configurations.</violation>
</file>

Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.

Comment on lines +592 to +594
if (additionalProperties.containsKey(OMIT_DEFAULT_NULL_VALUES)) {
this.setOmitDefaultNullValues(convertPropertyToBoolean(OMIT_DEFAULT_NULL_VALUES));
}
Copy link
Contributor

@cubic-dev-ai cubic-dev-ai bot Mar 15, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2: Public option key rename removed backward compatibility: legacy ommitDefaultNullValues is no longer accepted, breaking existing generator configurations.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/KotlinSpringServerCodegen.java, line 592:

<comment>Public option key rename removed backward compatibility: legacy `ommitDefaultNullValues` is no longer accepted, breaking existing generator configurations.</comment>

<file context>
@@ -589,10 +589,10 @@ public void processOpts() {
 
-        if (additionalProperties.containsKey(OMMIT_DEFAULT_NULL_VALUES)) {
-            this.setOmmitDefaultNullValues(convertPropertyToBoolean(OMMIT_DEFAULT_NULL_VALUES));
+        if (additionalProperties.containsKey(OMIT_DEFAULT_NULL_VALUES)) {
+            this.setOmitDefaultNullValues(convertPropertyToBoolean(OMIT_DEFAULT_NULL_VALUES));
         }
</file context>
Suggested change
if (additionalProperties.containsKey(OMIT_DEFAULT_NULL_VALUES)) {
this.setOmitDefaultNullValues(convertPropertyToBoolean(OMIT_DEFAULT_NULL_VALUES));
}
if (additionalProperties.containsKey(OMIT_DEFAULT_NULL_VALUES) || additionalProperties.containsKey("ommitDefaultNullValues")) {
String omitDefaultNullValuesKey = additionalProperties.containsKey(OMIT_DEFAULT_NULL_VALUES)
? OMIT_DEFAULT_NULL_VALUES
: "ommitDefaultNullValues";
this.setOmitDefaultNullValues(convertPropertyToBoolean(omitDefaultNullValuesKey));
}
Fix with Cubic

@4brunu
Copy link
Contributor

4brunu commented Mar 16, 2026

Hi, this is something that I also need.
I think this is something that should not be applied just to data classes, it should also be applied to the default values in api methods.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants